home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-E / MiniCad 5 Demo (Click Me!) / MiniCad 5 Demo (Click Me!).rsrc / STR#_7024.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  750 b   |  29 lines

  1. Norm( Vect : VECTOR) : REAL;
  2.  
  3. Returns the norm (or length) of the vector Vect
  4.  
  5. Perp(Vect : VECTOR) : VECTOR;
  6.  
  7. Returns a vector which is perpendicular to vector Vect
  8.  
  9. Vec2Ang( Vect : VECTOR) : REAL;
  10.  
  11. Returns the angle of vector Vect
  12.  
  13. Ang2Vec (#Angle, Length : REAL) : REAL;
  14.  
  15. Receives an angle and a length and returns a vector
  16.  
  17. UnitVec(Vect : VECTOR) : VECTOR;
  18.  
  19. Returns the standard unit vector of Vect
  20.  
  21. Comp(Vect1,Vect2 : VECTOR;  VAR Vect3,Vect4 : VECTOR);
  22.  
  23. Receives two vectors Vect1,Vect2 and returns the vector component of Vect1 along Vec2 in Vect3 and the vector component of Vect1 orthogonal to Vect2 in Vect4
  24.  
  25. AngBVec(Vect1,Vect2 : VECTOR) : REAL;
  26.  
  27. Receives two vectors and returns the angle (in radians) between the two vectors Vect1,Vect2
  28.  
  29.